8/7/2017

Instructions

  • Does the web page feature a date and is this date less than two months before the date that you're grading this assignment?
  • Is the web page a presentation and does it feature an interactive plot that appears to have been created with Plotly?

Interactive plot

Setting up the libraries and plot for the plot.

library(RColorBrewer)
library(plotly)
library(quantmod)
## Warning: package 'quantmod' was built under R version 3.4.1
getSymbols("AAPL",src="yahoo")
## [1] "AAPL"
g <- autoplot.zoo(AAPL) 

Financial Stock - AAPL time series

ggplotly(g)